home *** CD-ROM | disk | FTP | other *** search
- #ifndef MBSTD_H
- #define MBSTD_H
-
- #define CHAR char
- #define SCHAR char
- typedef unsigned char UCHAR;
-
- #define INT int
- #define SINT int
- typedef unsigned int UINT;
-
- #define SHORT short
- #define SSHORT short
- typedef unsigned short USHORT;
-
- #define LONG long
- #define SLONG long
- typedef unsigned long ULONG;
-
- #define DOUBLE double
-
- #define BOOL int
- #define SUCC_FAIL int
- #ifndef VOID
- #define VOID void
- #endif
-
- #define STATIC static /* Names not needed outside this src module */
-
- #define LOCAL /* Names not needed outside this software module */
- #define LCL_XTRN extern /* Names defined within this software module */
-
- #define PUBLIC /* Names needed outside this software module */
- #define EXTERN extern /* Names defined outside this software module */
-
- #define TRUE 1
- #define FALSE 0
-
- #define SUCCESS 0
- #define FAIL (-1)
-
- #endif MBSTD_H
-